home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / db / interfaces < prev    next >
Text File  |  1994-02-26  |  4KB  |  94 lines

  1. # $Id: interfaces,v 3.3 1994/02/26 13:56:56 ppessi Exp $
  2. #
  3. # Network Interface Configuration for AmiTCP/IP
  4. # =============================================
  5. #
  6. # AmiTCP/IP uses the network interface to communicate with SANA-II devices,
  7. # just like DOS uses handlers or filesystems to communicate with exec
  8. # devices.  A network interface is created and configured with `ifconfig'
  9. # utility.  AmiTCP/IP can create several network interfaces for each SANA-II
  10. # device; this is seldom useful, except when network has many different
  11. # framings for IP.
  12. #
  13. # The new-style network interface name consists of interface device name
  14. # concatenated with interface unit number, ie. if the interface name is
  15. # "slip0", then the interface device name is "slip" and the interface unit
  16. # is 0.  The network interface name should not contain digits ('0' ... '9').
  17. #
  18. # There is a built-in interface "lo0" in AmiTCP/IP, other interfaces should
  19. # be defined here.
  20. #
  21. # This configuration file is read with template:
  22. # NAME/A, DEV=DEVICE/A/K, UNIT/N/K, IPTYPE/N/K, ARPTYPE=IPARPTYPE/N/K,
  23. # IPREQ=IPREQUESTS/N/K, ARPREQ=ARPREQUESTS/N/K, WRITEREQ=WRITEREQUESTS/N/K,
  24. # NOTRACKING/S, NOARP/S, ARPHDR/N/K, P2P=POINT2POINT/S, NOSIMPLEX/S,
  25. # LOOPBACK/S
  26. #
  27. # Lines can be continued if their last character is '+'
  28. # '#' and ';' are comment characters - rest of the line is ignored
  29. #
  30. # Parameters are interpreted as follows:
  31. # NAME/A
  32. #   new-style AmiTCP/IP network interface name
  33. # DEV=DEVICE/A/K
  34. #   Sana-II (old-style AmiTCP/IP) device name
  35. # UNIT/N/K
  36. #   Sana-II (old-style AmiTCP/IP) device unit number. Default value is 0.
  37. #   If no Sana-II unit number is given, the interface unit number is used
  38. # IPTYPE/N/K (*
  39. #   Packet type (framing) for Internet Protocol (IP)
  40. # IPREQ=IPREQUESTS/N/K
  41. #   IO requests allocated for receiving IP packets.
  42. # ARPTYPE=IPARPTYPE/N/K (*
  43. #   Packet type (framing) for Address Resolution Protocol (ARP)
  44. # ARPREQ=ARPREQUESTS/N/K
  45. #   IO requests allocated for receiving ARP packets
  46. # WRITEREQ=WRITEREQUESTS/N/K
  47. #   IO requests allocated for transmitting packets
  48. # NOTRACKING/S
  49. #   Disable the packet type tracking on SANA-II devices.  This feature is
  50. #   needed to circumvent a bug in a2060.device V37.2 
  51. # NOARP/S
  52. #   Disable the ARP for this interface
  53. # ARPHDR/N/K (*
  54. #   The ARP header version. This is 1 for Ethernet, 7 for Arcnet by default
  55. # P2P=POINT2POINT/S
  56. #   Use the device as point-to-point device
  57. # NOSIMPLEX/S
  58. #   Disable the copying of broadcast packets.  Set this parameter if we hear
  59. #   our own broadcasts
  60. # LOOPBACK/S
  61. #   Set this parameter if it is loopback
  62. #
  63. # *) Don't set these parameters if you don't know what you are doing.
  64. #    AmiTCP/IP recognizes Ethernet, Arcnet (RFC 1051 framing), SLIP and PPP
  65. #    drivers automatically.  See file <netinclude/net/sana2tags.h> for the
  66. #    packet types used for these drivers.
  67. # Here is a few examples:
  68. #
  69. # Serial Line IP
  70. #
  71. slip dev=devs:networks/rhslip.device 
  72. # IPTYPE=2048 NOARP P2P IPREQ=8 WRITEREQ=8
  73. #
  74. # SLIP with V. Jacobson header compression 
  75. #
  76. cslip dev=devs:networks/rhcslip.device 
  77. # IPTYPE=2048 NOARP P2P IPREQ=8 WRITEREQ=8
  78. #
  79. # Ethernet adapter A2065
  80. #
  81. ether dev=devs:networks/a2065.device 
  82. # IPTYPE=2048 ARPTYPE=2054 ARPHDR=1 ARPREQ=4 IPREQ=16 WRITEREQ=16 
  83. # Arcnet adapter a2060 
  84. #
  85. arcnet dev=devs:networks/a2060.device NOTRACKING
  86. # IPTYPE=240 ARPTYPE=241 ARPHDR=7 ARPREQ=4 IPREQ=16 WRITEREQ=16 
  87. #
  88. # An X.25 driver by Dave Martin
  89. #
  90. axdm dev=devs:networks/ax25.device +
  91.   IPTYPE=204 ARPTYPE=205 ARPHDR=3 ARPREQ=3 IPREQ=16 WRITEREQ=16
  92.